-- إيقاف النطق مع الإهتزاز, واستئنافه مع الإشعار,
local tts= this.isTTSEnabled()

switch tts
 case true
  this.setUseSingleTTS(true)
  this.setTTSEnabled(false)
  this.setVibrateIntensity(64.00)
  this.vibrate(true)

 case false
  this.setUseSingleTTS(false)
  this.setTTSEnabled(true)
  this.vibrate(false)
  this.postSpeak(50, "ناطق ")
end